home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ADA Programming Guide
/
ADA Programming Guide.iso
/
ada_gnu
/
include
/
fnmatch.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-30
|
356b
|
27 lines
#ifndef FNM_PATHNAME
#define FNM_PATHNAME (1 << 0)
#endif
#ifndef FNM_QUOTE
#define FNM_QUOTE (1 << 1)
#endif
#ifndef FNM_NOMATCH
#define FNM_NOMATCH 1
#endif
#ifndef FNM_ERROR
#define FNM_ERROR 2
#endif
#ifdef __cplusplus
extern "C" {
#endif
int fnmatch(const char *, const char *, int);
#ifdef __cplusplus
}
#endif